home *** CD-ROM | disk | FTP | other *** search
-
-
-
- SSSSSSSSYYYYGGGGSSSSTTTT((((3333SSSS)))) SSSSSSSSYYYYGGGGSSSSTTTT((((3333SSSS))))
-
-
-
- NNNNAAAAMMMMEEEE
- SSYGST - reduce a real symmetric-definite generalized eigenproblem to
- standard form
-
- SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
- SUBROUTINE SSYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
-
- CHARACTER UPLO
-
- INTEGER INFO, ITYPE, LDA, LDB, N
-
- REAL A( LDA, * ), B( LDB, * )
-
- IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
- These routines are part of the SCSL Scientific Library and can be loaded
- using either the -lscs or the -lscs_mp option. The -lscs_mp option
- directs the linker to use the multi-processor version of the library.
-
- When linking to SCSL with -lscs or -lscs_mp, the default integer size is
- 4 bytes (32 bits). Another version of SCSL is available in which integers
- are 8 bytes (64 bits). This version allows the user access to larger
- memory sizes and helps when porting legacy Cray codes. It can be loaded
- by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
- only one of the two versions; 4-byte integer and 8-byte integer library
- calls cannot be mixed.
-
- PPPPUUUURRRRPPPPOOOOSSSSEEEE
- SSYGST reduces a real symmetric-definite generalized eigenproblem to
- standard form. If ITYPE = 1, the problem is A*x = lambda*B*x,
- and A is overwritten by inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T)
-
- If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or
- B*A*x = lambda*x, and A is overwritten by U*A*U**T or L**T*A*L.
-
- B must have been previously factorized as U**T*U or L*L**T by SPOTRF.
-
-
- AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
- ITYPE (input) INTEGER
- = 1: compute inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T);
- = 2 or 3: compute U*A*U**T or L**T*A*L.
-
- UPLO (input) CHARACTER
- = 'U': Upper triangle of A is stored and B is factored as
- U**T*U; = 'L': Lower triangle of A is stored and B is factored
- as L*L**T.
-
- N (input) INTEGER
- The order of the matrices A and B. N >= 0.
-
-
-
-
-
-
- PPPPaaaaggggeeee 1111
-
-
-
-
-
-
- SSSSSSSSYYYYGGGGSSSSTTTT((((3333SSSS)))) SSSSSSSSYYYYGGGGSSSSTTTT((((3333SSSS))))
-
-
-
- A (input/output) REAL array, dimension (LDA,N)
- On entry, the symmetric matrix A. If UPLO = 'U', the leading N-
- by-N upper triangular part of A contains the upper triangular
- part of the matrix A, and the strictly lower triangular part of A
- is not referenced. If UPLO = 'L', the leading N-by-N lower
- triangular part of A contains the lower triangular part of the
- matrix A, and the strictly upper triangular part of A is not
- referenced.
-
- On exit, if INFO = 0, the transformed matrix, stored in the same
- format as A.
-
- LDA (input) INTEGER
- The leading dimension of the array A. LDA >= max(1,N).
-
- B (input) REAL array, dimension (LDB,N)
- The triangular factor from the Cholesky factorization of B, as
- returned by SPOTRF.
-
- LDB (input) INTEGER
- The leading dimension of the array B. LDB >= max(1,N).
-
- INFO (output) INTEGER
- = 0: successful exit
- < 0: if INFO = -i, the i-th argument had an illegal value
-
- SSSSEEEEEEEE AAAALLLLSSSSOOOO
- INTRO_LAPACK(3S), INTRO_SCSL(3S)
-
- This man page is available only online.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PPPPaaaaggggeeee 2222
-
-
-
-